home *** CD-ROM | disk | FTP | other *** search
/ Aminet 4 / Aminet 4 - November 1994.iso / aminet / comm / misc / mirrorman_1_10b1.lha / MirrorManager-1.10b1 / rexx / SetConfigureDefaults < prev    next >
Text File  |  1994-06-24  |  800b  |  18 lines

  1.  
  2. ; This Shell script sets the default values in the Configure Installer script.
  3. ; Commodore's Installer compiles it's script before it executes it
  4. ; and no further Installer LISP code can be evaluated at run-time.
  5. ; This is why the Configure Installer script cannot read the current default values
  6. ; on it's own before it begins asking you for the pathnames.
  7.  
  8. echo "Reading current default values ..."
  9. rx Configure.rexx READ SCRIPT MirrorManager.rexx > T:SetConfigureDefaultsTemp.<$$>
  10.  
  11. echo "Setting default values in Configure script ..."
  12. rx Configure.rexx SCRIPT Configure WITH T:SetConfigureDefaultsTemp.<$$> DELIMITER ";@" TERMINATOR ";end"
  13.  
  14. delete quiet T:SetConfigureDefaultsTemp.<$$>
  15.  
  16. ;run >nil: installer SCRIPT Configure APPNAME MirrorManager.rexx MINUSER EXPERT DEFUSER EXPERT
  17. echo "done."
  18.